home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 27 / CDROM27.iso / share / progra / mai / Files, Detecting existance of < prev    next >
Encoding:
Text File  |  1997-07-14  |  237 b   |  9 lines

  1. 'Description: Detects if a file exists.
  2.  
  3. 'Function FileExists (filename As String) As Integer
  4.     On Error Resume Next
  5.         x% = Len(Dir$(filename))
  6.     If Err Or x% = 0 Then FileExists = False Else FileExists = True
  7. 'End Function
  8.  
  9.